home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1999 January / Designer's Club 1999 January.iso / pc / Idea Source / main.dir / 00047_media.ls < prev    next >
Encoding:
Text File  |  1998-12-11  |  327 b   |  22 lines

  1. on mouseEnter me
  2.   puppetSound(1, "szew")
  3.   set the visible of sprite 19 to 0
  4.   updateStage()
  5. end
  6.  
  7. on mouseLeave me
  8.   set the visible of sprite 19 to 1
  9.   updateStage()
  10. end
  11.  
  12. on mouseDown
  13.   set the visible of sprite 12 to 0
  14.   updateStage()
  15. end
  16.  
  17. on mouseUp
  18.   set the visible of sprite 12 to 1
  19.   updateStage()
  20.   go(1, "media")
  21. end
  22.